From: emellor@ewan Date: Tue, 4 Oct 2005 10:01:38 +0000 (+0100) Subject: Use the domain ID to refer to backends, not the UUID. This means that a new X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16763^2~56^2~2 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22man:///%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22man:/?a=commitdiff_plain;h=6b6edfe1d5609abbba73a53cb26909518f2a1580;p=xen.git Use the domain ID to refer to backends, not the UUID. This means that a new backend is used on a localhost live migrate; migration was failing otherwise. Signed-off-by: Ewan Mellor --- diff --git a/tools/python/xen/xend/server/DevController.py b/tools/python/xen/xend/server/DevController.py index e93d4051cd..7992adc143 100644 --- a/tools/python/xen/xend/server/DevController.py +++ b/tools/python/xen/xend/server/DevController.py @@ -230,7 +230,7 @@ class DevController: return "%s/backend/%s/%s/%d" % (backdom.getDomainPath(), self.deviceClass, - self.vm.getUuid(), devid) + self.vm.getDomid(), devid) def frontendPath(self, devid):